home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / hotkey / AutoHotkey104504_Install.exe / AutoHotkey.chm / docs / scripts / winlirc.ahk < prev    next >
Text File  |  2006-11-15  |  12KB  |  280 lines

  1. ; WinLIRC Client
  2. ; http://www.autohotkey.com
  3. ; This script receives notifications from WinLIRC whenever you press
  4. ; a button on your remote control. It can be used to automate Winamp,
  5. ; Windows Media Player, etc. It's easy to configure. For example, if
  6. ; WinLIRC recognizes a button named "VolUp" on your remote control,
  7. ; create a label named VolUp and beneath it use the command
  8. ; "SoundSet +5" to increase the soundcard's volume by 5%.
  9.  
  10. ; Here are the steps to use this script:
  11. ; 1) Configure WinLIRC to recognize your remote control and its buttons.
  12. ;    WinLIRC is at http://winlirc.sourceforge.net
  13. ; 2) Edit the WinLIRC path, address, and port in the CONFIG section below.
  14. ; 3) Launch this script. It will start the WinLIRC server if needed.
  15. ; 4) Press some buttons on your remote control. A small window will
  16. ;    appear showing the name of each button as you press it.
  17. ; 5) Configure your buttons to send keystrokes and mouse clicks to
  18. ;    windows such as Winamp, Media Player, etc. See the examples below.
  19.  
  20. ; This script requires AutoHotkey 1.0.38 or later.
  21. ; HISTORY OF CHANGES
  22. ; October 5, 2005:
  23. ; - Eliminated Winsock warning dialog "10054" upon system shutdown/logoff.
  24. ; - Added option "DelayBetweenButtonRepeats" to throttle the repeat speed.
  25.  
  26. ; -------------------------------------------------
  27. ; CONFIGURATION SECTION: Set your preferences here.
  28. ; -------------------------------------------------
  29. ; Some remote controls repeat the signal rapidly while you're holding down
  30. ; a button. This makes it difficult to get the remote to send only a single
  31. ; signal. The following setting solves this by ignoring repeated signals
  32. ; until the specified time has passed. 200 is often a good setting.  Set it
  33. ; to 0 to disable this feature.
  34. DelayBetweenButtonRepeats = 200
  35.  
  36. ; Specify the path to WinLIRC, such as C:\WinLIRC\winlirc.exe
  37. WinLIRC_Path = %A_ProgramFiles%\WinLIRC\winlirc.exe
  38.  
  39. ; Specify WinLIRC's address and port. The most common are 127.0.0.1 (localhost) and 8765.
  40. WinLIRC_Address = 127.0.0.1
  41. WinLIRC_Port = 8765
  42.  
  43. ; Do not change the following two lines. Skip them and continue below.
  44. Gosub WinLIRC_Init
  45. return
  46.  
  47. ; --------------------------------------------
  48. ; ASSIGN ACTIONS TO THE BUTTONS ON YOUR REMOTE
  49. ; --------------------------------------------
  50. ; Configure your remote control's buttons below. Use WinLIRC's names
  51. ; for the buttons, which can be seen in your WinLIRC config file
  52. ; (.cf file) -- or you can press any button on your remote and the
  53. ; script will briefly display the button's name in a small window.
  54. ; Below are some examples. Feel free to revise or delete them to suit
  55. ; your preferences.
  56.  
  57. VolUp:
  58. SoundSet +5  ; Increase master volume by 5%.
  59. return
  60.  
  61. VolDown:
  62. SoundSet -5  ; Reduce master volume by 5%.
  63. return
  64.  
  65. ChUp:
  66. WinGetClass, ActiveClass, A
  67. if ActiveClass in Winamp v1.x,Winamp PE  ; Winamp is active.
  68.     Send {right}  ; Send a right-arrow keystroke.
  69. else  ; Some other type of window is active.
  70.     Send {WheelUp}  ; Rotate the mouse wheel up by one notch.
  71. return
  72.  
  73. ChDown:
  74. WinGetClass, ActiveClass, A
  75. if ActiveClass in Winamp v1.x,Winamp PE  ; Winamp is active.
  76.     Send {left}  ; Send a left-arrow keystroke.
  77. else  ; Some other type of window is active.
  78.     Send {WheelDown}  ; Rotate the mouse wheel down by one notch.
  79. return
  80.  
  81. Menu:
  82. IfWinExist, Untitled - Notepad
  83. {
  84.     WinActivate
  85. }
  86. else
  87. {
  88.     Run, Notepad
  89.     WinWait, Untitled - Notepad
  90.     WinActivate
  91. }
  92. Send Some keystrokes sent to Notepad.{Enter}
  93. return
  94.  
  95. ; The examples above give a feel for how to accomplish common tasks.
  96. ; To learn the basics of AutoHotkey, check out the Quick-start Tutorial
  97. ; at http://www.autohotkey.com/docs/Tutorial.htm
  98.  
  99. ; ----------------------------
  100. ; END OF CONFIGURATION SECTION
  101. ; ----------------------------
  102. ; Do not make changes below this point unless you want to change the core
  103. ; functionality of the script.
  104.  
  105. WinLIRC_Init:
  106. OnExit, ExitSub  ; For connection cleanup purposes.
  107.  
  108. ; Launch WinLIRC if it isn't already running:
  109. Process, Exist, winlirc.exe
  110. if not ErrorLevel  ; No PID for WinLIRC was found.
  111. {
  112.     IfNotExist, %WinLIRC_Path%
  113.     {
  114.         MsgBox The file "%WinLIRC_Path%" does not exist. Please edit this script to specify its location.
  115.         ExitApp
  116.     }
  117.     Run %WinLIRC_Path%
  118.     Sleep 200  ; Give WinLIRC a little time to initialize (probably never needed, just for peace of mind).
  119. }
  120.  
  121. ; Connect to WinLIRC (or any type of server for that matter):
  122. socket := ConnectToAddress(WinLIRC_Address, WinLIRC_Port)
  123. if socket = -1  ; Connection failed (it already displayed the reason).
  124.     ExitApp
  125.  
  126. ; Find this script's main window:
  127. Process, Exist  ; This sets ErrorLevel to this script's PID (it's done this way to support compiled scripts).
  128. DetectHiddenWindows On
  129. ScriptMainWindowId := WinExist("ahk_class AutoHotkey ahk_pid " . ErrorLevel)
  130. DetectHiddenWindows Off
  131.  
  132. ; When the OS notifies the script that there is incoming data waiting to be received,
  133. ; the following causes a function to be launched to read the data:
  134. NotificationMsg = 0x5555  ; An arbitrary message number, but should be greater than 0x1000.
  135. OnMessage(NotificationMsg, "ReceiveData")
  136.  
  137. ; Set up the connection to notify this script via message whenever new data has arrived.
  138. ; This avoids the need to poll the connection and thus cuts down on resource usage.
  139. FD_READ = 1     ; Received when data is available to be read.
  140. FD_CLOSE = 32   ; Received when connection has been closed.
  141. if DllCall("Ws2_32\WSAAsyncSelect", "UInt", socket, "UInt", ScriptMainWindowId, "UInt", NotificationMsg, "Int", FD_READ|FD_CLOSE)
  142. {
  143.     MsgBox % "WSAAsyncSelect() indicated Winsock error " . DllCall("Ws2_32\WSAGetLastError")
  144.     ExitApp
  145. }
  146. return
  147.  
  148.  
  149.  
  150. ConnectToAddress(IPAddress, Port)
  151. ; This can connect to most types of TCP servers, not just WinLIRC.
  152. ; Returns -1 (INVALID_SOCKET) upon failure or the socket ID upon success.
  153. {
  154.     VarSetCapacity(wsaData, 32)  ; The struct is only about 14 in size, so 32 is conservative.
  155.     result := DllCall("Ws2_32\WSAStartup", "UShort", 0x0002, "UInt", &wsaData) ; Request Winsock 2.0 (0x0002)
  156.     ; Since WSAStartup() will likely be the first Winsock function called by this script,
  157.     ; check ErrorLevel to see if the OS has Winsock 2.0 available:
  158.     if ErrorLevel
  159.     {
  160.         MsgBox WSAStartup() could not be called due to error %ErrorLevel%. Winsock 2.0 or higher is required.
  161.         return -1
  162.     }
  163.     if result  ; Non-zero, which means it failed (most Winsock functions return 0 upon success).
  164.     {
  165.         MsgBox % "WSAStartup() indicated Winsock error " . DllCall("Ws2_32\WSAGetLastError")
  166.         return -1
  167.     }
  168.  
  169.     AF_INET = 2
  170.     SOCK_STREAM = 1
  171.     IPPROTO_TCP = 6
  172.     socket := DllCall("Ws2_32\socket", "Int", AF_INET, "Int", SOCK_STREAM, "Int", IPPROTO_TCP)
  173.     if socket = -1
  174.     {
  175.         MsgBox % "socket() indicated Winsock error " . DllCall("Ws2_32\WSAGetLastError")
  176.         return -1
  177.     }
  178.  
  179.     ; Prepare for connection:
  180.     SizeOfSocketAddress = 16
  181.     VarSetCapacity(SocketAddress, SizeOfSocketAddress)
  182.     InsertInteger(2, SocketAddress, 0, AF_INET)   ; sin_family
  183.     InsertInteger(DllCall("Ws2_32\htons", "UShort", Port), SocketAddress, 2, 2)   ; sin_port
  184.     InsertInteger(DllCall("Ws2_32\inet_addr", "Str", IPAddress), SocketAddress, 4, 4)   ; sin_addr.s_addr
  185.  
  186.     ; Attempt connection:
  187.     if DllCall("Ws2_32\connect", "UInt", socket, "UInt", &SocketAddress, "Int", SizeOfSocketAddress)
  188.     {
  189.         MsgBox % "connect() indicated Winsock error " . DllCall("Ws2_32\WSAGetLastError") . ". Is WinLIRC running?"
  190.         return -1
  191.     }
  192.     return socket  ; Indicate success by returning a valid socket ID rather than -1.
  193. }
  194.  
  195.  
  196.  
  197. ReceiveData(wParam, lParam)
  198. ; By means of OnMessage(), this function has been set up to be called automatically whenever new data
  199. ; arrives on the connection.  It reads the data from WinLIRC and takes appropriate action depending
  200. ; on the contents.
  201. {
  202.     socket := wParam
  203.     ReceivedDataSize = 4096  ; Large in case a lot of data gets buffered due to delay in processing previous data.
  204.     Loop  ; This loop solves the issue of the notification message being discarded due to thread-already-running.
  205.     {
  206.         VarSetCapacity(ReceivedData, ReceivedDataSize, 0)  ; 0 for last param terminates string for use with recv().
  207.         ReceivedDataLength := DllCall("Ws2_32\recv", "UInt", socket, "Str", ReceivedData, "Int", ReceivedDataSize, "Int", 0)
  208.         if ReceivedDataLength = 0  ; The connection was gracefully closed, probably due to exiting WinLIRC.
  209.             ExitApp  ; The OnExit routine will call WSACleanup() for us.
  210.         if ReceivedDataLength = -1
  211.         {
  212.             WinsockError := DllCall("Ws2_32\WSAGetLastError")
  213.             if WinsockError = 10035  ; WSAEWOULDBLOCK, which means "no more data to be read".
  214.                 return 1
  215.             if WinsockError <> 10054 ; WSAECONNRESET, which happens when WinLIRC closes via system shutdown/logoff.
  216.                 ; Since it's an unexpected error, report it.  Also exit to avoid infinite loop.
  217.                 MsgBox % "recv() indicated Winsock error " . WinsockError
  218.             ExitApp  ; The OnExit routine will call WSACleanup() for us.
  219.         }
  220.         ; Otherwise, process the data received. Testing shows that it's possible to get more than one line
  221.         ; at a time (even for explicitly-sent IR signals), which the following method handles properly.
  222.         ; Data received from WinLIRC looks like the following example (see the WinLIRC docs for details):
  223.         ; 0000000000eab154 00 NameOfButton NameOfRemote
  224.         Loop, parse, ReceivedData, `n, `r
  225.         {
  226.             if A_LoopField in ,BEGIN,SIGHUP,END  ; Ignore blank lines and WinLIRC's start-up messages.
  227.                 continue
  228.             ButtonName =  ; Init to blank in case there are less than 3 fields found below.
  229.             Loop, parse, A_LoopField, %A_Space%  ; Extract the button name, which is the third field.
  230.                 if A_Index = 3
  231.                     ButtonName := A_LoopField
  232.             global DelayBetweenButtonRepeats  ; Declare globals to make them available to this function.
  233.             static PrevButtonName, PrevButtonTime, RepeatCount  ; These variables remember their values between calls.
  234.             if (ButtonName != PrevButtonName || A_TickCount - PrevButtonTime > DelayBetweenButtonRepeats)
  235.             {
  236.                 if IsLabel(ButtonName)  ; There is a subroutine associated with this button.
  237.                     Gosub %ButtonName%  ; Launch the subroutine.
  238.                 else ; Since there is no associated subroutine, briefly display which button was pressed.
  239.                 {
  240.                     if (ButtonName == PrevButtonName)
  241.                         RepeatCount += 1
  242.                     else
  243.                         RepeatCount = 1
  244.                     SplashTextOn, 150, 20, Button from WinLIRC, %ButtonName% (%RepeatCount%)
  245.                     SetTimer, SplashOff, 3000  ; This allows more signals to be processed while displaying the window.
  246.                 }
  247.                 PrevButtonName := ButtonName
  248.                 PrevButtonTime := A_TickCount
  249.             }
  250.         }
  251.     }
  252.     return 1  ; Tell the program that no further processing of this message is needed.
  253. }
  254.  
  255.  
  256.  
  257. SplashOff:
  258. SplashTextOff
  259. SetTimer, SplashOff, Off
  260. return
  261.  
  262.  
  263.  
  264. InsertInteger(pInteger, ByRef pDest, pOffset = 0, pSize = 4)
  265. ; The caller must ensure that pDest has sufficient capacity.  To preserve any existing contents in pDest,
  266. ; only pSize number of bytes starting at pOffset are altered in it.
  267. {
  268.     Loop %pSize%  ; Copy each byte in the integer into the structure as raw binary data.
  269.         DllCall("RtlFillMemory", "UInt", &pDest + pOffset + A_Index-1, "UInt", 1, "UChar", pInteger >> 8*(A_Index-1) & 0xFF)
  270. }
  271.  
  272.  
  273.  
  274. ExitSub:  ; This subroutine is called automatically when the script exits for any reason.
  275. ; MSDN: "Any sockets open when WSACleanup is called are reset and automatically
  276. ; deallocated as if closesocket was called."
  277. DllCall("Ws2_32\WSACleanup")
  278. ExitApp
  279.